home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / keyb / cedwars2.zip / ARSTCED.NOT < prev    next >
Text File  |  1988-09-07  |  4KB  |  151 lines

  1.  
  2. comments by Dave Williams, 8/31/88
  3.  
  4. references to "go" are to a directory-changing utility called CDD.COM
  5. references to "sameline" are to a batch file that returns the cursor to the
  6.            same line as when the CED command was issued, so the screen doesn't
  7.            scroll downward.
  8.  
  9. Sorry, Mike; I might have misinterpreted a couple of your macros there!
  10.  
  11.  
  12.         ;set status character to control-D
  13. statch 
  14.  
  15.         ;clear screen and put cursor in middle of screen
  16. syn g echo 0H
  17.  
  18. syn ' mapmem >e:\&^c:\util\txt2com e:\&. e:\&.com^e:\&^del e:\&.*^g
  19.  
  20.         ;look at CED synonym list
  21. syn ? show c:\util\ced.cnf
  22.  
  23.         ;edit PC-Write's configuration file
  24. syn def go e:\^ed pcw3\ed.def^go e:\pcw3
  25.  
  26.         ;another macro for the directory utility
  27. syn e break on^cls^dd /on %1 %2 
  28.  
  29.         ;look inside an archive (PKARC renamed ARC?)
  30. syn l cls^arc vm %1 %2
  31.  
  32.         ;bring up QDOS shell?
  33. syn q qd
  34.  
  35.         ;file viewer
  36. syn s show
  37.  
  38.         ;bring up spell checker
  39. syn sp c:\word\spell-am
  40.  
  41. syn t whattime
  42.  
  43.         ;whiz is a file search utility
  44. syn wc whiz c:%1
  45. syn wd whiz d:%1
  46.  
  47.         ;to return from a DOS shell to the calling program
  48. syn x g^exit
  49.  
  50. syn bl c:\batch\blank x
  51.  
  52.         ;calls PCOPY disk filling program
  53. syn co echo  ^c:\util\pcopy %1 %2 /NW/NS/WH^exit
  54.  
  55.  
  56.  
  57. rem ** directory changing macros
  58.  
  59. SYN ` c:
  60. syn c cd c:
  61. syn `` d:
  62. syn r go c:\^e:\sameline
  63. syn mcs c:^cd\type\mcs
  64. syn ven go c:\ventura
  65. syn ty go c:\typeset
  66. SYN vv go c:\vpi^e:\sameline
  67. SYN vd go c:\vpi\data
  68. syn temp go d:\temp^e:\sameline
  69. syn docs go c:\docs^e:\sameline
  70. syn dos go c:\dos310^e:\sameline
  71. syn down go d:\download\new3^e:\sameline
  72. syn 3e go e:\pcw3
  73. syn 300 c:^cd\typeset\l300
  74. syn tp go c:\tp^e:\sameline
  75. syn mcst c:^cd\type\mcs\text
  76. syn tpe go c:\tp\examples^e:\sameline
  77. syn ut go c:\util^e:\sameline
  78. syn up go d:\upload^e:\sameline
  79. syn ltr go c:\letters^e:\sameline
  80. syn msg go d:\msg
  81. syn pcw go c:\pcw3
  82. SYN inv c:^cd\invoices
  83. syn kpe c:\keyport\kpedit
  84. syn / go e:\^e:\sameline
  85. syn ar go c:\arc^e:\sameline
  86. syn b go c:\batch^e:\sameline
  87. syn f go f:\^cls^dd /on
  88.         ;some sort of sorted or double column directory, parameters
  89. syn d dd %1 %2 /on
  90.  
  91.  
  92.  
  93. rem ** go somewhere and do something, execute a program
  94.  
  95. syn bb go d:\boyan^boyan
  96. syn vx go c:\vpi^vpi start
  97. REM syn sp c:\wp\pencil %1
  98. syn dutch go d:\binkley^dutched
  99. syn mset c:^cd\type\mcs^microset^type microset.msg
  100. syn bbl go d:\boyan^e:\sameline
  101. syn bink go d:\binkley^e:\sameline
  102. syn edd go c:\ed^e:\sameline
  103. syn err go e:\pcw3^ed3 errors.inf
  104. syn 3 go e:\pcw3^ed3 
  105. syn exx go e:\^ed test.mss
  106.  
  107.  
  108.  
  109.  
  110. rem ** memory control macros (for Mark and Release)
  111.  
  112. syn kpoff release e:\kp.mrk
  113. syn clearall ^^if exist e:\first.mrk release e:\first.mrk
  114. syn skoff release e:\sk.mrk
  115. syn skon go c:\sk^fmark e:\sk.mrk^sk
  116. syn rel release e:\%1.mrk
  117. syn prox release e:\wphd.mrk^c:\batch\prmt.bat
  118. syn lightoff release e:\light.mrk
  119. syn lighton fmark e:\light.mrk^cd c:\light^c:^light
  120.  
  121.  
  122. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  123.  
  124. The erase.txt and sameline.bat files from Mike Arst.........
  125.  
  126. Ok, it's all yours: the ERASE.TXT file:
  127. ------------ ( starts here ) -----------------------------
  128. The following line moves the cursor back up to the screen
  129. line where the batch file starts, after deleting the ECHO OFF:
  130.  
  131. echo AAA
  132.  
  133.  
  134. The following does the same as the first line but then moves down
  135. one line - to create some blank space.
  136. echo AAB
  137.  
  138. ------------------ ( ends there ) --------------------------
  139. ------------------( and now for the SAMELINE.BAT file ) ----
  140. echo off
  141. echo AAAAAAA
  142.  
  143. (ends there)
  144.  
  145. If I were to try to explain why these work it'd tie me up into
  146. a knot. I just screwed around with this stuff until I got it to work.
  147.  
  148. Mike
  149.  
  150. 
  151.